home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Registry Checker 3.xpl < prev    next >
Text File  |  2001-11-27  |  2KB  |  49 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="1"
  4. "UIPATH"="Program Options\Built in Windows Apps\Windows Registry Checker"
  5. "NAME"="Maximum Number of Backups"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="No. of Backups:"
  8. "DESCRIPTION 1"="In Windows 98 and Me, Microsoft included the Windows Registry Checker, a program which scanned the registry, to check for errors, and to create a backup."
  9. "DESCRIPTION 2"="By default, the Registry Checker keeps 5 backups, however you may have more or less backups if you so wish. The minimum number is 1 backup, the maximum number is 99 backups."
  10. "DESCRIPTION 3"="Bear in mind that while having more than one backup can be very useful, having a lot of backups will take up a lot of HD space."
  11. "COMMENT 1"="Thanks to Axcel216 [axcel216@aol.com] for the idea!"
  12. "VERSION"="1.02"
  13. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  14. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  15. "CONTACURL"="http://www.xteq.com/"
  16. "OSVERSION"="001010"
  17.  
  18. w=GetWinDir
  19. sF="scanreg.ini"
  20.  
  21. SUB Plugin_Initialize
  22.  Call TxTOpen(w & sF)
  23.  
  24.  i=TxtFindLine("MaxBackupCopies=",false)
  25.  if i>0 then
  26.   s=TxtGetLine(i)
  27.   i=InStr(s,"=")
  28.   s=Right(s,len(s)-i)
  29.   Call SetUIElement(1,s)
  30.  end if
  31. END SUB
  32.  
  33. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  s=GetUIElement(1)
  35.  if s<1 OR s>99 then
  36.   Call MsgError("You must enter a value between 1 and 99!")
  37.  else
  38.   i=TxtFindLine("MaxBackupCopies=",false)
  39.   Call TxtSetLine(i,"MaxBackupCopies=" & s)
  40.  end if
  41.  
  42.  Call FileBackup(w & sF)
  43.  Call TxtSave()
  44. END SUB
  45.  
  46. SUB Plugin_Terminate
  47.  Call TxTClose()
  48. END SUB
  49.